-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[mlir][tosa] Add support for 0 dim in ReshapeOp #84004
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Thank you for submitting a Pull Request (PR) to the LLVM Project! This PR will be automatically labeled and the relevant teams will be If you wish to, you can add reviewers by using the "Reviewers" section on this page. If this is not working for you, it is probably because you do not have write If you have received no comments on your PR for a week, you can request a review If you have further questions, they may be answered by the LLVM GitHub User Guide. You can also ask questions in a comment on this PR, on the LLVM Discord or on the forums. |
|
@llvm/pr-subscribers-mlir Author: None (fjsyrmia) ChangesBy default, when any value in the ‘shape’ input is equal to zero the Full diff: https://github.com/llvm/llvm-project/pull/84004.diff 1 Files Affected:
diff --git a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
index 62d07859e32f6e..7b6a42e509e015 100644
--- a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
+++ b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
@@ -928,10 +928,16 @@ LogicalResult tosa::ReshapeOp::inferReturnTypeComponents(
// dimension.
int64_t numElements = inputShape.getNumElements();
int64_t staticMul = 1;
- for (auto val : newShapeValue) {
+ int i = 0;
+ for (auto &val : newShapeValue) {
+ if (val == 0) {
+ // Swap 0 dim with corresponding input dim
+ val = inputShape.getDimSize(i);
+ }
if (!ShapedType::isDynamic(val)) {
staticMul *= val;
}
+ i++;
}
// Determine the length of the dynamic dimension.
|
|
@llvm/pr-subscribers-mlir-tosa Author: None (fjsyrmia) ChangesBy default, when any value in the ‘shape’ input is equal to zero the Full diff: https://github.com/llvm/llvm-project/pull/84004.diff 1 Files Affected:
diff --git a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
index 62d07859e32f6e..7b6a42e509e015 100644
--- a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
+++ b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
@@ -928,10 +928,16 @@ LogicalResult tosa::ReshapeOp::inferReturnTypeComponents(
// dimension.
int64_t numElements = inputShape.getNumElements();
int64_t staticMul = 1;
- for (auto val : newShapeValue) {
+ int i = 0;
+ for (auto &val : newShapeValue) {
+ if (val == 0) {
+ // Swap 0 dim with corresponding input dim
+ val = inputShape.getDimSize(i);
+ }
if (!ShapedType::isDynamic(val)) {
staticMul *= val;
}
+ i++;
}
// Determine the length of the dynamic dimension.
|
| for (auto val : newShapeValue) { | ||
| int i = 0; | ||
| for (auto &val : newShapeValue) { | ||
| if (val == 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can a shape value be 0?
|
From TOSA specification, the tensor shape in each dimension must be greater than or equal to 1. |
|
@fjsyrmia is it ok to close this PR? |
|
Will close this stale PR if no response by the end of this week. |
|
close stale PR |
This change adds support for onnx models with 0 values in reshape op
shape input.
By default, when any value in the ‘shape’ input is equal to zero the
corresponding dimension value is copied from the input tensor dynamically.
Source: https://onnx.ai/onnx/operators/onnx__Reshape.html